@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,400);

.notification {
    width: 400px;
    height: 150px;
    position: fixed;
    bottom: 0;
    left: 0px;
    background: whitesmoke;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    box-shadow: 0 0 5px;
}

#note_row{
    display:flex;
    flex-direction:row;
}

#note_image{
    display:flex;
    flex-direction:column;

}

#note_content{
    margin-left: 10px;
    margin-top: 5px;
    display:flex;
    flex-direction:column;
}
 #note_content h4{
     color: darkblue;
     margin: 0;
 }

#note_content span{
    color: black;
    margin: 0;
    font-size: 12px;
}